20 lines
465 B
Plaintext
20 lines
465 B
Plaintext
|
# Description: simple/suckless image-viewer
|
||
|
# URL: https://github.com/muennich/sxiv
|
||
|
# Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
|
||
|
# Depends on: imlib2 libexif giflib
|
||
|
|
||
|
name=sxiv
|
||
|
version=1.3.1
|
||
|
release=1
|
||
|
source=(https://github.com/muennich/$name/archive/v$version.tar.gz config.h)
|
||
|
|
||
|
build () {
|
||
|
cd "$name-$version"
|
||
|
cp $SRC/config.h .
|
||
|
make
|
||
|
make DESTDIR=$PKG \
|
||
|
PREFIX=/usr \
|
||
|
MANPREFIX=/usr/man \
|
||
|
install
|
||
|
}
|