diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-04 16:15:50 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-04 16:15:50 +0200 |
commit | b1735d8e75d48a11753a66376ad4feee7538bdea (patch) | |
tree | ccd5ecf337682f548a230ea57734c045d85d0a32 /gnome-common | |
parent | 18d58fa5e152143b7e1a387dc8fd839e0e069cff (diff) | |
download | contrib-b1735d8e75d48a11753a66376ad4feee7538bdea.tar.gz contrib-b1735d8e75d48a11753a66376ad4feee7538bdea.tar.xz |
gnome-common: initial commit
Diffstat (limited to 'gnome-common')
-rw-r--r-- | gnome-common/.footprint | 10 | ||||
-rw-r--r-- | gnome-common/.signature | 5 | ||||
-rw-r--r-- | gnome-common/Pkgfile | 17 |
3 files changed, 32 insertions, 0 deletions
diff --git a/gnome-common/.footprint b/gnome-common/.footprint new file mode 100644 index 000000000..256b19c33 --- /dev/null +++ b/gnome-common/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gnome-autogen.sh +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/aclocal/ +-rw-r--r-- root/root usr/share/aclocal/ax_check_enable_debug.m4 +-rw-r--r-- root/root usr/share/aclocal/ax_code_coverage.m4 +-rw-r--r-- root/root usr/share/aclocal/gnome-code-coverage.m4 +-rw-r--r-- root/root usr/share/aclocal/gnome-common.m4 +-rw-r--r-- root/root usr/share/aclocal/gnome-compiler-flags.m4 diff --git a/gnome-common/.signature b/gnome-common/.signature new file mode 100644 index 000000000..d19055905 --- /dev/null +++ b/gnome-common/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3/lFnWrvB5pdClD0qsNCT/cSlEsj5LyaItIJzQs74V5W2rLTjcdAw1Ut6hXju5tRx9X7NVLEEeAEqZ0u6jKM+Aw= +SHA256 (Pkgfile) = 5d8192daef7afeb6164d9e791ccb43dec042fc2c8dc5f0c965502351fe1aa0f6 +SHA256 (.footprint) = a605f6f250170ffeba9898210d3afff97f8d5dbe7d531918ff5db2b5d67478ab +SHA256 (gnome-common-3.18.0.tar.xz) = 22569e370ae755e04527b76328befc4c73b62bfd4a572499fde116b8318af8cf diff --git a/gnome-common/Pkgfile b/gnome-common/Pkgfile new file mode 100644 index 000000000..eaadad182 --- /dev/null +++ b/gnome-common/Pkgfile @@ -0,0 +1,17 @@ +# Description: Common development macros for GNOME +# URL: https://git.gnome.org/browse/gnome-common +# Maintainer: Tim Biermann, tbier at posteo dot de + +name=gnome-common +version=3.18.0 +release=1 +source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz) + +build() { + cd $name-$version + ./autogen.sh + ./configure \ + --prefix=/usr + make + make DESTDIR=$PKG install +} |