blob: 1890ca699d7af23a6c6e48a017509738de1938b1 (
plain)
1 # Description: simple/suckless image-viewer
2 # URL: https://github.com/muennich/sxiv
3 # Maintainer: John Vogel, jvogel4 at stny dot rr dot com
4 # Depends on: giflib imlib2 libexif xorg-libxft
5
6 name=sxiv
7 version=26
8 release=1
9 source=(https://github.com/muennich/$name/archive/v$version/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13
14 if [ -f $PKGMK_ROOT/config.h ]; then
15 cp $SRC/config.h .
16 fi
17
18 make CC=gcc CFLAGS="$CFLAGS"
19 make DESTDIR=$PKG PREFIX=/usr install
20 }
|