diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-13 11:35:02 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-13 11:35:02 +0000 |
commit | 6174c20f885740756b61a721cdf0c43b8a85373a (patch) | |
tree | d61ae7365ea9fa8bd54e5af8e04f6763305b7fc7 /community/mousepad/APKBUILD | |
parent | 5b15e74c8921683361c3a7d68b162f424e8eb3b8 (diff) | |
download | aports-6174c20f885740756b61a721cdf0c43b8a85373a.tar.bz2 aports-6174c20f885740756b61a721cdf0c43b8a85373a.tar.xz |
community/mousepad: move from main
Diffstat (limited to 'community/mousepad/APKBUILD')
-rw-r--r-- | community/mousepad/APKBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/community/mousepad/APKBUILD b/community/mousepad/APKBUILD new file mode 100644 index 0000000000..cba3fd4af8 --- /dev/null +++ b/community/mousepad/APKBUILD @@ -0,0 +1,48 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=mousepad +pkgver=0.4.0 +pkgrel=2 +pkgdesc="Simple Text Editor for Xfce4" +url="http://foo-projects.org/~benny/xfce/apps.html" +arch="all" +license="GPL-2.0-or-later" +makedepends="gtk+2.0-dev gtksourceview2-dev" +depends="desktop-file-utils" +install="" +subpackages="$pkgname-lang" +source="http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2 + Fixup-some-warnings-about-using-NULL-where-it-shoudnt-be.patch + " + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + update_config_sub || return 1 +} + +build () { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/xfce4 \ + --localstatedir=/var \ + --disable-gtk3 \ + --disable-static \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="f55314c5dda6323883241e6cf01550a7 mousepad-0.4.0.tar.bz2 +b31ccd05bbfdaf185970e592be9ebd9e Fixup-some-warnings-about-using-NULL-where-it-shoudnt-be.patch" +sha256sums="60114431eac8db6bb6ce18bd38f1630cccb684375b97a445a1b6fd619848d132 mousepad-0.4.0.tar.bz2 +bccc5354e3eca83c608ab952188f4a47605d88cad7e2b48fa426f2057a122c9d Fixup-some-warnings-about-using-NULL-where-it-shoudnt-be.patch" +sha512sums="5196abd04268d1ace118dc485b72bfcfb7f9175eeaf52bc97c08c1646371d26401403a3bb199d882380bcb998547c65af9bd054f0365afd846c0ad74d3c3b1fe mousepad-0.4.0.tar.bz2 +886e2ff78d8a9083d71421fed8fdc8eea308da75bffb0f2eb6edd09c6606fc2a6706b0354a0f18191f3090e381d8885ea9961360c5cdcd959c4974959a176741 Fixup-some-warnings-about-using-NULL-where-it-shoudnt-be.patch" |