diff options
Diffstat (limited to 'user/mousepad')
-rw-r--r-- | user/mousepad/APKBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/user/mousepad/APKBUILD b/user/mousepad/APKBUILD index 7b848ad28..5ac314a65 100644 --- a/user/mousepad/APKBUILD +++ b/user/mousepad/APKBUILD @@ -2,19 +2,17 @@ # Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> pkgname=mousepad pkgver=0.4.1 -pkgrel=0 +pkgrel=1 pkgdesc="Simple text editor for the XFCE desktop environment" url="https://xfce.org" arch="all" license="GPL-2.0+" makedepends="intltool glib-dev gtk+3.0-dev gtksourceview-3.0-dev dbus-glib-dev" subpackages="$pkgname-lang" -langdir="/usr/lib/locale" -source="http://archive.xfce.org/src/apps/mousepad/0.4/mousepad-$pkgver.tar.bz2" +source="https://archive.xfce.org/src/apps/mousepad/0.4/mousepad-$pkgver.tar.bz2" build() { - cd "$builddir" - ./configure \ + LIBS="-lintl" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ @@ -25,12 +23,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |