Skip to content

Commit

Permalink
urlzcrazy: style fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
noptrix committed Oct 14, 2024
1 parent bcbea98 commit c51e436
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions packages/urlcrazy/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,18 @@ arch=('any')
url='http://www.morningstarsecurity.com/research/urlcrazy'
license=('custom')
depends=('ruby')
source=(git+https://github.com/urbanadventurer/urlcrazy.git)
source=("git+https://github.com/urbanadventurer/$pkgname.git")
sha256sums=('SKIP')


package() {
install -d "${pkgdir}/usr/bin"
ln -s "/usr/share/urlcrazy/urlcrazy" "${pkgdir}/usr/bin/urlcrazy"
install -d "$pkgdir/usr/bin"
ln -s "/usr/share/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"

install -d "${pkgdir}/usr/share/urlcrazy"
cp -a "${srcdir}/urlcrazy/." "${pkgdir}/usr/share/urlcrazy"
install -d "$pkgdir/usr/share/$pkgname"
cp -a "$pkgname"/. "$pkgdir/usr/share/$pkgname"

install -d "${pkgdir}/usr/share/doc/urlcrazy"
ln -s "/usr/share/urlcrazy/README" "${pkgdir}/usr/share/doc/urlcrazy"
install -d "$pkgdir/usr/share/doc/$pkgname"
ln -s "/usr/share/$pkgname/README" "$pkgdir/usr/share/doc/$pkgname"
}

0 comments on commit c51e436

Please sign in to comment.