2018-09-09 02:07:43 +02:00
|
|
|
# Description: libmypaint is a library for making brushstrokes
|
|
|
|
# URL: https://github.com/mypaint/libmypaint
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2019-09-20 22:44:13 +02:00
|
|
|
# Depends on: gobject-introspection json-c intltool
|
2018-09-09 02:07:43 +02:00
|
|
|
|
|
|
|
name=libmypaint
|
2019-09-20 22:44:13 +02:00
|
|
|
version=1.4.0
|
|
|
|
release=1
|
2019-07-20 21:41:59 +10:00
|
|
|
source=(https://github.com/mypaint/$name/archive/v$version/$name-$version.tar.gz
|
|
|
|
libmypaint-1d5d822-stable.patch.xz)
|
2018-09-09 02:07:43 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2019-09-20 22:44:13 +02:00
|
|
|
|
2019-05-19 23:08:12 +02:00
|
|
|
./autogen.sh
|
2018-09-09 02:07:43 +02:00
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
2019-07-20 21:41:59 +10:00
|
|
|
--disable-nls
|
2018-09-09 02:07:43 +02:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
|
|
}
|