diff options
author | Sascha Paunovic <azarus@posteo.net> | 2018-06-03 17:36:59 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-07-19 11:53:13 +0300 |
commit | b3db8b80511d4da70e7ab168959553db46a8c94e (patch) | |
tree | 390ac9bfc3e8b13998d4821656213e90f33ef8e6 /community | |
parent | 18fcb95dae35c42490084e43d30d2a8749186244 (diff) | |
download | aports-b3db8b80511d4da70e7ab168959553db46a8c94e.tar.bz2 aports-b3db8b80511d4da70e7ab168959553db46a8c94e.tar.xz |
community/mypaint-brushes: new aport
This is also a dependency of GIMP 2.10.2.
Diffstat (limited to 'community')
-rw-r--r-- | community/mypaint-brushes/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/community/mypaint-brushes/APKBUILD b/community/mypaint-brushes/APKBUILD new file mode 100644 index 0000000000..b7f6d6ab5f --- /dev/null +++ b/community/mypaint-brushes/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: Sascha Paunovic <azarus@posteo.net> +# Maintainer: Sascha Paunovic <azarus@posteo.net> +pkgname=mypaint-brushes +pkgver=1.3.0 +pkgrel=0 +pkgdesc="default MyPaint brushes" +url="https://github.com/Jehan/mypaint-brushes" +arch="noarch" +license="CC0-1.0" +makedepends="autoconf automake" +source="$pkgname-$pkgver.tar.gz::https://github.com/Jehan/$pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir/"$pkgname-$pkgver + +prepare() { + cd "$builddir" + autoreconf -i +} + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="f8e0050cd700358d75cd25e40acd73905e2a53f21c6177cf67e8012aa4fbba8dc445109f07601c3846f95532a40feff4441081c0aa4e958049fc0ed8008fb414 mypaint-brushes-1.3.0.tar.gz" |