Felix Yan pushed to branch main at Arch Linux / Packaging / Packages /
microsocks
Commits:
2fe2193f by Felix Yan at 2024-12-09T14:38:38+08:00
upgpkg: 1.0.4-1
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,12 +1,13 @@
pkgbase = microsocks
pkgdesc = Tiny, portable SOCKS5 server with very moderate resource usage
- pkgver = 1.0.3
- pkgrel = 2
+ pkgver = 1.0.4
+ pkgrel = 1
url = https://github.com/rofl0r/microsocks
arch = x86_64
license = MIT
+ makedepends = git
depends = glibc
- source =
https://github.com/rofl0r/microsocks/archive/v1.0.3/microsocks-1.0.3.tar.gz
- sha512sums =
cd2b4a689a4502e56900a87f88d09283a872fe367e4e0e1957800a32e195492d641266a1f2f85f861a135d6a207db92d2f0058785b80dfbf436d8ea805ca9322
+ source = git+https://github.com/rofl0r/microsocks.git#tag=v1.0.4
+ sha512sums =
0e04985b046e1be866580682077a7f0faa9aef2d097bb306caeca46c53878d5dcc54b2298e873f74c34ab2c0078b4f727bca9c65c5845849a47cf02e3a7a9d3b
pkgname = microsocks
=====================================
PKGBUILD
=====================================
@@ -1,23 +1,24 @@
# Maintainer: Felix Yan <[email protected]>
pkgname=microsocks
-pkgver=1.0.3
-pkgrel=2
+pkgver=1.0.4
+pkgrel=1
pkgdesc='Tiny, portable SOCKS5 server with very moderate resource usage'
arch=('x86_64')
url='https://github.com/rofl0r/microsocks'
license=('MIT')
-depends=('glibc')
-source=(https://github.com/rofl0r/microsocks/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('cd2b4a689a4502e56900a87f88d09283a872fe367e4e0e1957800a32e195492d641266a1f2f85f861a135d6a207db92d2f0058785b80dfbf436d8ea805ca9322')
+depends=(glibc)
+makedepends=(git)
+source=(git+https://github.com/rofl0r/microsocks.git#tag=v$pkgver)
+sha512sums=('0e04985b046e1be866580682077a7f0faa9aef2d097bb306caeca46c53878d5dcc54b2298e873f74c34ab2c0078b4f727bca9c65c5845849a47cf02e3a7a9d3b')
build() {
- cd $pkgname-$pkgver
+ cd microsocks
make
}
package() {
- cd $pkgname-$pkgver
+ cd microsocks
make prefix=/usr DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "$pkgdir"/usr/share/licenses/$pkgname/
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/microsocks/-/commit/2fe2193fd4fe2c7ffef278d38a0019d266995dc4
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/microsocks/-/commit/2fe2193fd4fe2c7ffef278d38a0019d266995dc4
You're receiving this email because of your account on gitlab.archlinux.org.