blob: 47b9964865e7df17ca58b7bf14112837595ab6c0 (
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=24
8 release=1
9 source=(https://github.com/muennich/$name/archive/v$version/$name-$version.tar.gz
10 config.h)
11
12 build () {
13 cd $name-$version
14
15 cp $SRC/config.h .
16 make CC=gcc CFLAGS="$CFLAGS"
17 make DESTDIR=$PKG PREFIX=/usr install
18 }
|