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/orage/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/orage/APKBUILD')
-rw-r--r-- | user/orage/APKBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/user/orage/APKBUILD b/user/orage/APKBUILD index 4cb9121e2..c64f3c18b 100644 --- a/user/orage/APKBUILD +++ b/user/orage/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> pkgname=orage pkgver=4.12.1 -pkgrel=1 +pkgrel=2 pkgdesc="Calendaring software for the XFCE desktop environment" url="https://xfce.org" arch="all" @@ -10,14 +10,12 @@ license="GPL-2.0+ AND BSD-3-Clause AND (LGPL-2.1-only OR MPL-1.0) AND (GPL-2.0+ makedepends="intltool gtk+2.0-dev dbus-glib-dev libnotify-dev popt-dev xfce4-panel-dev" subpackages="$pkgname-doc $pkgname-lang" -langdir="/usr/lib/locale" -source="http://archive.xfce.org/src/apps/orage/4.12/orage-$pkgver.tar.bz2 +source="https://archive.xfce.org/src/apps/orage/4.12/orage-$pkgver.tar.bz2 libical-3.patch " build() { - cd "$builddir" - ./configure \ + LIBS="-lintl" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ @@ -28,12 +26,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |