cruxports/recode/Pkgfile

21 lines
490 B
Plaintext

# Description: converts files between various character sets and usages
# URL: https://github.com/rrthomas/recode
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on:
name=recode
version=3.7.12
release=1
source=(https://github.com/rrthomas/recode/releases/download/v${version}/${name}-${version}.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/lib/*.la
rm -rf $PKG/usr/share/info
}