commit f27079ca307f460fa29faf5cf9ffd1c754c4398a
parent 7c34047150aad84deed7b22e4540483918ab9de8
Author: Marlon Ivo <email@marlonivo.xyz>
Date: Sun, 24 Aug 2025 06:33:27 +0000
aur beats me i beat back
Diffstat:
2 files changed, 7 insertions(+), 11 deletions(-)
diff --git a/.SRCINFO b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = hfc
pkgdesc = hfc - hosts file client
- pkgver = 0.0.1
+ pkgver = 0.1
pkgrel = 1
url = https://git.marlonivo.com/hfc/log.html
arch = x86_64
@@ -9,7 +9,5 @@ pkgbase = hfc
makedepends = make
depends = curl
depends = ncurses
- source = git+git://git.marlonivo.com/hfc
- md5sums = SKIP
pkgname = hfc
diff --git a/PKGBUILD b/PKGBUILD
@@ -1,5 +1,5 @@
pkgname=hfc
-pkgver=0.0.1
+pkgver=0.1
pkgrel=1
pkgdesc="hfc - hosts file client"
arch=('x86_64')
@@ -7,17 +7,15 @@ url="https://git.marlonivo.com/hfc/log.html"
license=('MIT')
depends=('curl' 'ncurses')
makedepends=('gcc' 'make')
-source=("git+git://git.marlonivo.com/hfc")
-md5sums=('SKIP')
+source=()
+md5sums=()
build() {
- cd "$srcdir"
make
}
package() {
- cd "$srcdir"
- install -Dm755 hfc "$pkgdir/usr/bin/hfc"
- install -Dm644 hfc.1 "$pkgdir/usr/share/man/man1/hfc.1"
- install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ install -Dm755 hfc "$pkgdir/usr/bin/hfc"
+ install -Dm644 hfc.1 "$pkgdir/usr/share/man/man1/hfc.1"
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}