35 lines
909 B
Bash
35 lines
909 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
_pkgname=mypaint-brushes
|
|
pkgname=${_pkgname}1
|
|
# this version is a 1.3.0 with fixes and minor artwork changes, doen't need debian patches (package revised)
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
pkgdesc='Brushes used by MyPaint and other software using libmypaint'
|
|
url="https://github.com/mypaint/$_pkgname"
|
|
arch=(any)
|
|
license=(CC0-1.0)
|
|
depends=(libmypaint)
|
|
source=(https://github.com/mypaint/$_pkgname/archive/v$pkgver/$_pkgname-$pkgver.tar.gz)
|
|
sha512sums=('3e65619ae9a042cd6314396a826a2b63a72066e761244dc8763910555715b1dff6aa4395b5322510b114d61bb486f909fe505a564c89a2a5e1e5087ed298d08b')
|
|
|
|
prepare() {
|
|
cd $_pkgname-$pkgver
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
cd $_pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $_pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
install -Dm644 COPYING -t $pkgdir/usr/share/licenses/$pkgname
|
|
}
|
|
|
|
# vim:set sw=2 et:
|