diff options
author | Vitalii Kuzhdin | 2024-07-03 11:39:31 +0300 |
---|---|---|
committer | Vitalii Kuzhdin | 2024-07-03 11:39:31 +0300 |
commit | c6d046c72556f8195e69926932218a1e73df0713 (patch) | |
tree | d11f827cfa22cf151b754f8fcd20f1997938dc72 | |
download | aur-mole-git.tar.gz |
Initial build (2.0.0)
-rw-r--r-- | .SRCINFO | 16 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 45 |
3 files changed, 65 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..ad506e326e84 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = mole-git + pkgdesc = CLI app to create SSH tunnels + pkgver = 2.0.0.r10.geaee4e5 + pkgrel = 1 + url = https://davrodpin.github.io/mole + arch = any + license = MIT + makedepends = git + makedepends = go + depends = glibc + provides = mole=2.0.0 + conflicts = mole + source = mole::git+https://github.com/davrodpin/mole.git + sha256sums = SKIP + +pkgname = mole-git diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..018a3de08144 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +* +!PKGBUILD +!.SRCINFO +!.gitignore diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..e2784e27d333 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,45 @@ +# Maintainer: Vitalii Kuzhdin <vitaliikuzhdin@gmail.com> + +_pkgname="mole" +pkgname="${_pkgname}-git" +pkgver=2.0.0.r10.geaee4e5 +pkgrel=1 +pkgdesc="CLI app to create SSH tunnels" +arch=('any') +url="https://davrodpin.github.io/${_pkgname}" +_url="https://github.com/davrodpin/${_pkgname}" +license=('MIT') +depends=('glibc') +makedepends=('git' 'go') +provides=("${_pkgname}=${pkgver%%.r*}") +conflicts=("${_pkgname}") +_pkgsrc="${_pkgname}" +source=("${_pkgsrc}::git+${_url}.git") +sha256sums=('SKIP') + +pkgver() { + cd "${_pkgsrc}" + git describe --long --tags --abbrev=7 | sed 's/v//;s/\([^-]*-g\)/r\1/;s/-/./g' +} + +prepare() { + cd "${srcdir}/${_pkgsrc}" + [ -d "build" ] || mkdir "build" +} + +build() { + cd "${srcdir}/${_pkgsrc}" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" + go build -o "build/${_pkgname}" . +} + +package() { + cd "${srcdir}/${_pkgsrc}" + install -Dm755 "build/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}" + install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${_pkgname}/README.md" + install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" +} |