diff options
author | Deposite Pirate | 2020-10-27 13:43:24 +0100 |
---|---|---|
committer | Deposite Pirate | 2020-10-27 13:43:24 +0100 |
commit | 677c6067ae9406fdcdf144b4bffae79795a0614f (patch) | |
tree | 84bd6e992dc200484f6ca332c0ceea3cc2d108bb | |
parent | 93463341db02c3f01bd823e12a911ddafe719b0a (diff) |
* Add youtubedr.
new file: youtubedr/.SRCINFO
new file: youtubedr/PKGBUILD
-rw-r--r-- | youtubedr/.SRCINFO | 15 | ||||
-rw-r--r-- | youtubedr/PKGBUILD | 41 |
2 files changed, 56 insertions, 0 deletions
diff --git a/youtubedr/.SRCINFO b/youtubedr/.SRCINFO new file mode 100644 index 0000000..6e5d1c9 --- /dev/null +++ b/youtubedr/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = youtubedr + pkgdesc = Download YouTube videos + pkgver = 2.1.1 + pkgrel = 1 + url = https://github.com/kkdai/youtube + arch = x86_64 + license = MIT + makedepends = go + makedepends = git + depends = glibc + source = git+https://github.com/kkdai/youtube#tag=v2.1.1 + sha256sums = SKIP + +pkgname = youtubedr + diff --git a/youtubedr/PKGBUILD b/youtubedr/PKGBUILD new file mode 100644 index 0000000..b887205 --- /dev/null +++ b/youtubedr/PKGBUILD @@ -0,0 +1,41 @@ +# Maintainer: Deposite Pirate <dpirate@metalpunks.info> +# +# Upstream: https://git.metalpunks.info/arch-ports + +_pkgname=youtube +pkgname=youtubedr +pkgver=2.1.1 +pkgrel=1 +pkgdesc="Download YouTube videos" +arch=('x86_64') +url="https://github.com/kkdai/youtube" +license=('MIT') +depends=('glibc') +makedepends=('go' 'git') +source=("git+$url#tag=v$pkgver") +sha256sums=('SKIP') + +build() { + cd "${srcdir}/${_pkgname}" + GOOS=linux GOARCH=amd64 \ + CGO_CPPFLAGS="${CPPFLAGS}" \ + CGO_CFLAGS="${CFLAGS}" \ + CGO_CXXFLAGS="${CXXFLAGS}" \ + go build -v \ + -trimpath \ + -buildmode=pie \ + -mod=readonly \ + -modcacherw \ + -ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \ + -o build ./cmd/... +} + +check() { + cd "${srcdir}/${_pkgname}" + go test +} + +package() { + cd "${srcdir}/${_pkgname}" + install -Dm755 build "$pkgdir/usr/bin/${pkgname}" +} |