22 lines
489 B
Plaintext
22 lines
489 B
Plaintext
# Description: libmypaint is a library for making brushstrokes
|
|
# URL: https://github.com/mypaint/libmypaint
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: gobject-introspection json-c intltool
|
|
|
|
name=libmypaint
|
|
version=1.6.1
|
|
release=1
|
|
source=(https://github.com/mypaint/libmypaint/releases/download/v$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
export LINGUAS=" "
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|