summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fad3af80941c032ccc4f0f4d2090e2ad642021f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pkgname=file-uri-tools
pkgver=0.0.1
pkgrel=1
pkgdesc="Simple Perl scripts to convert to and from file:// URI"
arch=('any')
url=""
license=('MIT')
groups=()
depends=('perl-uri')
makedepends=()
provides=("${pkgname}")
conflicts=()
replaces=()
backup=()
options=()
install=
source=("file2uri"
        "uri2file"
       )
noextract=()
md5sums=("SKIP"
         "SKIP"
        )

package() {
    install -m755 -d $pkgdir/usr/bin
	install -m755 -t $pkgdir/usr/bin file2uri uri2file
}