mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-06 17:30:31 +00:00
22 lines
430 B
Plaintext
22 lines
430 B
Plaintext
# description : Converts files between various character sets and usages
|
|
# depends : python3
|
|
|
|
name=recode
|
|
version=3.7.14
|
|
release=1
|
|
source="https://github.com/rrthomas/recode/releases/download/v$version/$name-$version.tar.gz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-nls \
|
|
--without-included-gettext
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|