diff options
Diffstat (limited to 'user/xfconf/APKBUILD')
-rw-r--r-- | user/xfconf/APKBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/user/xfconf/APKBUILD b/user/xfconf/APKBUILD index 74dd12c7d..5486de7dd 100644 --- a/user/xfconf/APKBUILD +++ b/user/xfconf/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> pkgname=xfconf pkgver=4.13.7 -pkgrel=0 +pkgrel=1 pkgdesc="Configuration framework for the XFCE desktop environment" url="https://xfce.org" arch="all" @@ -11,12 +11,10 @@ license="LGPL-2.1+ AND GPL-2.0+" depends="dbus" makedepends="intltool gtk+3.0-dev libxfce4util-dev" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" -langdir="/usr/lib/locale" -source="http://archive.xfce.org/src/xfce/xfconf/4.13/xfconf-$pkgver.tar.bz2" +source="https://archive.xfce.org/src/xfce/xfconf/4.13/xfconf-$pkgver.tar.bz2" build() { - cd "$builddir" - ./configure \ + LIBS="-lintl" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ @@ -27,12 +25,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |