Compare commits

..

No commits in common. "master" and "main" have entirely different histories.
master ... main

2 changed files with 13 additions and 6 deletions

View File

@ -1,12 +1,12 @@
pkgbase = nnss pkgbase = nnss
pkgdesc = Network Namespace setup using SSH SOCKS proxy pkgdesc = Network Namespace setup using SSH SOCKS proxy
pkgver = 0.3.0 pkgver = 0.1.0
pkgrel = 1 pkgrel = 1
url = https://gitea.balki.me/balki/nnss url = https://gitea.balki.me/balki/nnss
arch = any arch = any
license = MPL license = MPL
depends = tun2socks depends = tun2socks
source = git+https://gitea.balki.me/balki/nnss.git#tag=v0.3.0 source = git+https://gitea.balki.me/balki/nnss.git#tag=v0.1.0
sha256sums = db3c866274224204259c4e48522fee5ac7678d34b02a0285f1073661027402ac sha256sums = 27133550b152ba9472c1347aa4794e9ec4da572f9c7744f47db07bafab3c0426
pkgname = nnss pkgname = nnss

View File

@ -1,7 +1,7 @@
# Maintainer: Balakrishnan Balasubramanian <aur@balki.me> # Maintainer: Balakrishnan Balasubramanian <aur@balki.me>
pkgname=nnss pkgname=nnss
pkgver=0.3.0 pkgver=0.1.0
pkgrel=1 pkgrel=1
pkgdesc='Network Namespace setup using SSH SOCKS proxy' pkgdesc='Network Namespace setup using SSH SOCKS proxy'
arch=('any') arch=('any')
@ -9,9 +9,16 @@ license=('MPL')
depends=('tun2socks') depends=('tun2socks')
url="https://gitea.balki.me/balki/$pkgname" url="https://gitea.balki.me/balki/$pkgname"
source=("git+$url.git#tag=v$pkgver") source=("git+$url.git#tag=v$pkgver")
sha256sums=('db3c866274224204259c4e48522fee5ac7678d34b02a0285f1073661027402ac') sha256sums=('27133550b152ba9472c1347aa4794e9ec4da572f9c7744f47db07bafab3c0426')
package() { package() {
cd "$pkgname" cd "$pkgname"
make PREFIX="$pkgdir/usr" install install -Dm 644 nnss-ssh@.service -t "${pkgdir}/usr/lib/systemd/system"
install -Dm 644 nnss-tunsocks@.service -t "${pkgdir}/usr/lib/systemd/system"
install -Dm 644 ssh_config -t "${pkgdir}/usr/lib/nnss"
install -Dm 755 tunsocks.sh -t "${pkgdir}/usr/lib/nnss"
install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/nnss"
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/doc/nnss"
install -Dm 644 tmpfiles.conf "${pkgdir}/usr/lib/tmpfiles.d/nnss.conf"
} }