diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-07 22:26:46 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-07 22:26:46 +0000 |
commit | 8d5b2960974be834c15e605810ea40c20ddddbbb (patch) | |
tree | c1c9b0b52911a54f0d48bb5e1452c9dbe93c6347 /user/appres/APKBUILD | |
parent | 7e1824ae6d507828225c109af8d0c250cf0caad4 (diff) | |
download | packages-8d5b2960974be834c15e605810ea40c20ddddbbb.tar.gz packages-8d5b2960974be834c15e605810ea40c20ddddbbb.tar.bz2 packages-8d5b2960974be834c15e605810ea40c20ddddbbb.tar.xz packages-8d5b2960974be834c15e605810ea40c20ddddbbb.zip |
user/*: Modernise / fix syntax / deps
Diffstat (limited to 'user/appres/APKBUILD')
-rw-r--r-- | user/appres/APKBUILD | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/user/appres/APKBUILD b/user/appres/APKBUILD index 49dcb6115..c0d655348 100644 --- a/user/appres/APKBUILD +++ b/user/appres/APKBUILD @@ -4,17 +4,15 @@ pkgname=appres pkgver=1.0.5 pkgrel=0 pkgdesc="list X application resource database" -url="https://xorg.freedesktop.org/" +url="https://www.X.org/" arch="all" license="X11" depends="" makedepends="libx11-dev libxt-dev xproto" -install="" subpackages="$pkgname-doc" -source="https://xorg.freedesktop.org/archive/individual/app/$pkgname-$pkgver.tar.bz2" +source="https://www.x.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -26,12 +24,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |