initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

24
gnome-common/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=gnome-common
pkgver=3.18.0
pkgrel=1
pkgdesc='Common development macros'
arch=('any')
depends=('sh' 'autoconf-archive' 'intltool' 'yelp-tools')
license=('GPL-2')
url='https://www.gnome.org'
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
sha512sums=('b931c9a6668d996560549738bb2d95f86f56fa68ce930c077275bdc8fddbc2d28d215c1190099db1df851417902fca87ec81f1c0e644c5b9630a175e1cde0719')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --with-autoconf-archive
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
}