diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-03-21 16:49:21 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-03-21 16:49:21 +0100 |
commit | a65ddb6057a4c1b490a983894dd56316eecff949 (patch) | |
tree | 2035b00b85a2d7e1ed4efa4bba402a8350409004 /community | |
parent | cb70444d726c14ea63d9a8ae749ab9939e701be2 (diff) | |
download | aports-a65ddb6057a4c1b490a983894dd56316eecff949.tar.bz2 aports-a65ddb6057a4c1b490a983894dd56316eecff949.tar.xz |
community/ruby-puma: link binaries to usr/bin
Diffstat (limited to 'community')
-rw-r--r-- | community/ruby-puma/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/community/ruby-puma/APKBUILD b/community/ruby-puma/APKBUILD index 0e9689d260..60f5d38745 100644 --- a/community/ruby-puma/APKBUILD +++ b/community/ruby-puma/APKBUILD @@ -3,7 +3,7 @@ pkgname=ruby-puma _gemname=puma pkgver=3.2.0 -pkgrel=0 +pkgrel=1 pkgdesc="Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server" url="http://puma.io/" arch="all" @@ -30,6 +30,9 @@ package() { rm -rf "$pkgdir"/$_gemdir/cache \ "$pkgdir"/$_geminstdir/ext \ "$pkgdir"/$_geminstdir/.require_paths + mkdir -p "$pkgdir"/usr/bin + ln -s $_gemdir/bin/puma "$pkgdir"/usr/bin/ || return 1 + ln -s $_gemdir/bin/pumactl "$pkgdir"/usr/bin/ || return 1 } md5sums="e1c66fa8d134bef5cfd680612238d725 puma-3.2.0.gem" sha256sums="eca7283e0558c3c6229b169c181973cfe4568a97955bacdeb2de793962b3ebae puma-3.2.0.gem" |