Compare commits

...

2 Commits

Author SHA1 Message Date
8bd03a8795 Added eget-bin
Added eget-bin-1.0.1-1
2022-03-25 19:31:16 -04:00
61ec226830 Updated httprobe-bin
Fixed name when installed to /usr/bin
2022-03-25 19:30:06 -04:00
3 changed files with 27 additions and 17 deletions

25
eget-bin/PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: Rain Clark <rain AT melonbread DOT dev>
pkgname=eget-bin
pkgver=1.0.1
pkgrel=1
pkgdesc="Easily install prebuilt binaries from GitHub"
arch=('i686' 'x86_64')
url="https://github.com/zyedidia/eget"
license=('MIT')
source_i686=(https://github.com/zyedidia/eget/releases/download/v${pkgver}/eget-${pkgver}-linux_386.tar.gz)
source_x86_64=(https://github.com/zyedidia/eget/releases/download/v${pkgver}/eget-${pkgver}-linux_amd64.tar.gz)
sha256sums_i686=('cb3adca582f716833263eb74d42b713068be4054fd00f15492545e70c207684f')
sha256sums_x86_64=('83f8af0862cf1a7f9c3f15139da2a7826829df3eeb3ea2963dcfabb38f671769')
package() {
mkdir -p ${pkgdir}/usr/bin
install ${srcdir}/eget-*/eget ${pkgdir}/usr/bin/eget
mkdir -p ${pkgdir}/usr/share/man/man1
gzip ${srcdir}/eget-*/eget.1
cp ${srcdir}/eget-*/eget.1.gz ${pkgdir}/usr/share/man/man1
}

View File

@ -1,15 +0,0 @@
pkgbase = httprobe-bin
pkgdesc = Take a list of domains and probe for working HTTP and HTTPS servers
pkgver = 0.1.2
pkgrel = 1
url = https://github.com/tomnomnom/httprobe
arch = i686
arch = x86_64
license = MIT
source_i686 = https://github.com/tomnomnom/httprobe/releases/download/v0.1.2/httprobe-linux-386-0.1.2.tgz
sha256sums_i686 = 3a19bc71cbcbf352636f70a2585a2aaedbe9f53290dcccd4bfbb3ab56ece7a49
source_x86_64 = https://github.com/tomnomnom/httprobe/releases/download/v0.1.2/httprobe-linux-amd64-0.1.2.tgz
sha256sums_x86_64 = a8e5dbaa09e4c35a6a1ac441667d1bd39f079d007ff77c6ffc4431687d875a94
pkgname = httprobe-bin

View File

@ -3,7 +3,7 @@
pkgname=httprobe-bin pkgname=httprobe-bin
pkgver=0.1.2 pkgver=0.1.2
pkgrel=1 pkgrel=2
pkgdesc="Take a list of domains and probe for working HTTP and HTTPS servers" pkgdesc="Take a list of domains and probe for working HTTP and HTTPS servers"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="https://github.com/tomnomnom/httprobe" url="https://github.com/tomnomnom/httprobe"
@ -17,5 +17,5 @@ sha256sums_x86_64=('a8e5dbaa09e4c35a6a1ac441667d1bd39f079d007ff77c6ffc4431687d87
package() { package() {
mkdir -p ${pkgdir}/usr/bin mkdir -p ${pkgdir}/usr/bin
install ${srcdir}/httprobe ${pkgdir}/usr/bin/${pkgname} install ${srcdir}/httprobe ${pkgdir}/usr/bin/httprobe
} }