mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 12:44:45 +00:00
15 lines
330 B
Plaintext
15 lines
330 B
Plaintext
# description : Converts files between various character sets and usages
|
|
# depends : python3
|
|
|
|
name=recode
|
|
version=3.7.6
|
|
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
|
|
}
|