optipng: initial release

This commit is contained in:
Jukka Heino 2006-04-24 09:39:38 +00:00
parent c2c8d6eae2
commit 114bc2379c
3 changed files with 22 additions and 0 deletions

3
optipng/.footprint Normal file
View File

@ -0,0 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/optipng

1
optipng/.md5sum Normal file
View File

@ -0,0 +1 @@
3964fdf24e6de62fc994850c548dd13f optipng-0.5.tar.gz

18
optipng/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Advanced lossless PNG optimizer
# URL: http://www.cs.toronto.edu/~cosmin/pngtech/optipng/
# Maintainer: Jukka Heino, jukka dot heino at gmail dot com
# Packager: Jukka Heino, jukka dot heino at gmail dot com
# Depends on:
name=optipng
version=0.5
release=1
source=(http://www.cs.toronto.edu/~cosmin/pngtech/$name/$name-$version.tar.gz)
build() {
cd $name-$version
cd src
sed -i "s/-O2/$CFLAGS/" scripts/gcc.mak
make -f scripts/gcc.mak
install -D -m 0755 $name $PKG/usr/bin/$name
}