blob: d931733b129403f4b51028b5a75fd8078e9b8ae1 (
plain)
1 # Description: A screenshot capturing program for the framebuffer console
2 # URL: http://www.sfires.net/fbshot/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libpng
5
6 name=fbshot
7 version=0.3
8 release=1
9 source=(http://distro.ibiblio.org/pub/linux/distributions/amigolinux/download/Utils/$name/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 sed -i -e "s|/usr/|$PKG/usr/|g" Makefile
14 install -d $PKG/usr/bin $PKG/usr/man/man1
15 make && make install
16 }
|