mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
29 lines
805 B
Bash
29 lines
805 B
Bash
pkgname=mypaint-brushes
|
|
pkgver=1.3.0
|
|
pkgrel=1
|
|
pkgdesc='Brushes used by MyPaint and other software using libmypaint.'
|
|
url='https://github.com/Jehan/mypaint-brushes'
|
|
arch=('x86_64')
|
|
license=('custom:CC0')
|
|
depends=('libmypaint')
|
|
source=($pkgname-$pkgver.tar.gz::https://github.com/Jehan/mypaint-brushes/archive/v$pkgver.tar.gz)
|
|
sha256sums=('704bb6420e65085acfd7a61d6050e96b0395c5eab078433f11406c355f16b214')
|
|
sha512sums=('f8e0050cd700358d75cd25e40acd73905e2a53f21c6177cf67e8012aa4fbba8dc445109f07601c3846f95532a40feff4441081c0aa4e958049fc0ed8008fb414')
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
install -Dm 644 COPYING -t $pkgdir/usr/share/licenses/$pkgname
|
|
}
|