1
0
forked from ports/contrib

convmv: new port

This commit is contained in:
Mikhail Kolesnik 2013-01-20 13:07:08 +02:00
parent 753bdce6b7
commit b5ce13b57f
3 changed files with 24 additions and 0 deletions

6
convmv/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/convmv
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/convmv.1.gz

1
convmv/.md5sum Normal file
View File

@ -0,0 +1 @@
b1bb703c08c6355868d15890ff193f7d convmv-1.15.tar.gz

17
convmv/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Converts filenames from one encoding to another
# URL: http://www.j3e.de/linux/convmv/
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on:
name=convmv
version=1.15
release=1
source=(http://www.j3e.de/linux/$name/$name-$version.tar.gz)
build() {
cd $name-$version
make
mkdir -p $PKG/usr/man/man1 $PKG/usr/bin
install -m 755 $name $PKG/usr/bin/$name
install -m 644 $name.1.gz $PKG/usr/man/man1/$name.1.gz
}