24 lines
672 B
Bash
24 lines
672 B
Bash
|
# Template file for 'nocache'
|
||
|
pkgname=nocache
|
||
|
version=0.9
|
||
|
revision=1
|
||
|
build_style=gnu-makefile
|
||
|
short_desc="Minimize filesystem caching effects"
|
||
|
maintainer="Duncaen <duncaen@voidlinux.eu>"
|
||
|
license="BSD"
|
||
|
homepage="https://github.com/Feh/nocache"
|
||
|
distfiles="https://github.com/Feh/nocache/archive/v${version}.tar.gz"
|
||
|
checksum=a5d790b77dc9e0c8e1241f99a9f31a088d02956a6a4c40dd17ddaa887b2bc33a
|
||
|
|
||
|
pre_build() {
|
||
|
sed -i -e '/^GCC/d' -e 's/$(GCC)/$(GCC) $(CFLAGS)/g' Makefile
|
||
|
sed -i -e '/#include <error.h>/d' cachedel.c cachestats.c
|
||
|
sed -i -e 's;/usr/local;/usr;g' nocache.global
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
vinstall nocache.so 644 usr/lib
|
||
|
vbin nocache.global nocache
|
||
|
vlicense COPYING
|
||
|
}
|