21 lines
538 B
Plaintext
21 lines
538 B
Plaintext
# Description: simple GTK+1/2 painting program
|
|
# URL: http://mtpaint.sourceforge.net/
|
|
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
|
# Packager: Ricardo Oliveira, crux at roliveira dot eu
|
|
# Depends on: gtk
|
|
# Nice to have: libungif
|
|
|
|
name=mtpaint
|
|
version=3.31
|
|
release=1
|
|
source=(http://dl.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2 png_c.diff)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
patch -p1 -i ../png_c.diff
|
|
./configure --prefix=/usr gtk2 cflags man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|