forked from ports/contrib
26 lines
693 B
Plaintext
26 lines
693 B
Plaintext
# Description: Library supporting additional image formats for Tcl/Tk
|
|
# URL: http://tkimg.sourceforge.net/
|
|
# Maintainer: Moritz Wilhelmy, moritz plus crux at wzff dot de
|
|
# Depends On: tk
|
|
# Nice to have: libpng libtiff libjpeg
|
|
|
|
name=tkimg
|
|
version=1.4
|
|
release=2
|
|
source=(http://downloads.sourceforge.net/tkimg/$name$version.tar.gz
|
|
Makefile.diff)
|
|
|
|
build() {
|
|
cd $name$version
|
|
patch < $SRC/Makefile.diff
|
|
|
|
# --exec-prefix determines the location of the *config.sh
|
|
# don't worry: they'll end up in /usr/lib. TkImg's use of autoconf is
|
|
# just plain weird, that's all
|
|
./configure --prefix=/usr --exec-prefix=/usr
|
|
|
|
make
|
|
make install INSTALL_ROOT=$PKG
|
|
}
|
|
|