gnome-common: initial commit

This commit is contained in:
Tim Biermann 2019-08-04 16:15:50 +02:00
parent 18d58fa5e1
commit b1735d8e75
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 32 additions and 0 deletions

10
gnome-common/.footprint Normal file
View File

@ -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

5
gnome-common/.signature Normal file
View File

@ -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

17
gnome-common/Pkgfile Normal file
View File

@ -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
}