diff options
author | willemw12 | 2021-06-25 11:29:41 +0200 |
---|---|---|
committer | willemw12 | 2021-06-25 11:29:41 +0200 |
commit | 5215a7d5ac3f50aec5fe015d2c874f5f8d46dc55 (patch) | |
tree | 81af5723a5a2ddb5af12b76397a1ca0ca1cbe087 /PKGBUILD | |
parent | ae4e168a15dbdfa90f7e6d1a16671c471a00935b (diff) | |
download | aur-5215a7d5ac3f50aec5fe015d2c874f5f8d46dc55.tar.gz |
Change "install -D"
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -13,8 +13,8 @@ provides=(${pkgname%-git}) conflicts=(${pkgname%-git}) source=($pkgname::git+https://github.com/xpirt/img2sdat.git img2sdat.sh) -md5sums=('SKIP' - 'c4854eebbd20f489f6024678c9bb5db2') +sha256sums=('SKIP' + '8452916580ddc7e18f814f448db4973d5f3722ee21f1938284fceb52df0b661e') pkgver() { cd $pkgname @@ -23,9 +23,6 @@ pkgver() { package() { install -Dm755 img2sdat.sh "$pkgdir/usr/bin/img2sdat" - - cd $pkgname - install -dm755 "$pkgdir/usr/share/${pkgname%-git}" - install -Dm755 *.py "$pkgdir/usr/share/${pkgname%-git}" + install -Dm755 $pkgname/*.py -t "$pkgdir/usr/share/${pkgname%-git}" } |