diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-07-07 04:49:07 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-07-07 04:49:07 +0000 |
commit | 077efc8fe93b89e8db7ed1bd9fd5b75c49ced53f (patch) | |
tree | 7d27a6072ca6099f3671cf418d27e2b942167d24 /user/xfce4-time-out-plugin/APKBUILD | |
parent | 03c2cfa441a78e27f9389c883eabdcf7624c8ebc (diff) | |
download | packages-077efc8fe93b89e8db7ed1bd9fd5b75c49ced53f.tar.gz packages-077efc8fe93b89e8db7ed1bd9fd5b75c49ced53f.tar.bz2 packages-077efc8fe93b89e8db7ed1bd9fd5b75c49ced53f.tar.xz packages-077efc8fe93b89e8db7ed1bd9fd5b75c49ced53f.zip |
user/[GTK apps, mostly XFCE]: fix locale dir
Diffstat (limited to 'user/xfce4-time-out-plugin/APKBUILD')
-rw-r--r-- | user/xfce4-time-out-plugin/APKBUILD | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/user/xfce4-time-out-plugin/APKBUILD b/user/xfce4-time-out-plugin/APKBUILD index 910bd6425..9a910af8d 100644 --- a/user/xfce4-time-out-plugin/APKBUILD +++ b/user/xfce4-time-out-plugin/APKBUILD @@ -2,26 +2,23 @@ # Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> pkgname=xfce4-time-out-plugin pkgver=1.0.2 -pkgrel=0 +pkgrel=1 pkgdesc="Forced computer break plugin for the XFCE panel" url="https://xfce.org" arch="all" license="GPL-2.0+" makedepends="intltool libxfce4ui-dev xfce4-panel-dev" subpackages="$pkgname-lang" -langdir="/usr/lib/locale" -source="http://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.0/xfce4-time-out-plugin-$pkgver.tar.bz2" +source="https://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.0/xfce4-time-out-plugin-$pkgver.tar.bz2" prepare() { - cd "$builddir" default_prepare chmod a+w config.sub update_config_sub } build() { - cd "$builddir" - ./configure \ + LIBS="-lintl" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ @@ -32,12 +29,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |