Compare commits
2 Commits
af453ca2ec
...
e0a3b66fa9
| Author | SHA1 | Date | |
|---|---|---|---|
| e0a3b66fa9 | |||
| 4e6c9dbeb5 |
@@ -80,7 +80,7 @@ jobs:
|
|||||||
|
|
||||||
cat > aur-work/.SRCINFO << SRCEOF
|
cat > aur-work/.SRCINFO << SRCEOF
|
||||||
pkgbase = kewt-bin
|
pkgbase = kewt-bin
|
||||||
pkgdesc = A minimalist, 100% POSIX static site generator inspired by werc and kew
|
pkgdesc = A minimalist, 100% POSIX, static site generator inspired by werc and kew
|
||||||
pkgver = ${VERSION}
|
pkgver = ${VERSION}
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://git.krzak.org/N0VA/kewt
|
url = https://git.krzak.org/N0VA/kewt
|
||||||
|
|||||||
@@ -28,6 +28,11 @@ curl -L -o kewt https://git.krzak.org/N0VA/kewt/releases/latest/download/kewt
|
|||||||
chmod +x kewt
|
chmod +x kewt
|
||||||
```
|
```
|
||||||
|
|
||||||
|
On Arch Linux, _kewt_ is available on the AUR:
|
||||||
|
|
||||||
|
- [kewt-bin](https://aur.archlinux.org/packages/kewt-bin) — prebuilt standalone binary from the latest release
|
||||||
|
- [kewt-git](https://aur.archlinux.org/packages/kewt-git) — built from the latest git source
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|||||||
29
packaging/AUR/PKGBUILD.git
Normal file
29
packaging/AUR/PKGBUILD.git
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# Maintainer: n0va <n0va@krzak.org>
|
||||||
|
pkgname=kewt-git
|
||||||
|
pkgver=r0.0000000
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="A minimalist, 100% POSIX, static site generator inspired by werc and kew"
|
||||||
|
arch=('any')
|
||||||
|
url="https://git.krzak.org/N0VA/kewt"
|
||||||
|
license=('MIT')
|
||||||
|
makedepends=('git')
|
||||||
|
depends=('sh')
|
||||||
|
provides=('kewt')
|
||||||
|
conflicts=('kewt' 'kewt-bin')
|
||||||
|
source=("${pkgname}::git+${url}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
sh tools/build-standalone.sh
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
install -Dm755 kewt "${pkgdir}/usr/bin/kewt"
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
pkgname=kewt-bin
|
pkgname=kewt-bin
|
||||||
pkgver=VERSION_PLACEHOLDER
|
pkgver=VERSION_PLACEHOLDER
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A minimalist, 100% POSIX static site generator inspired by werc and kew"
|
pkgdesc="A minimalist, 100% POSIX, static site generator inspired by werc and kew"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
url="https://git.krzak.org/N0VA/kewt"
|
url="https://git.krzak.org/N0VA/kewt"
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
|
|||||||
@@ -28,6 +28,11 @@ curl -L -o kewt https://git.krzak.org/N0VA/kewt/releases/latest/download/kewt
|
|||||||
chmod +x kewt
|
chmod +x kewt
|
||||||
```
|
```
|
||||||
|
|
||||||
|
On Arch Linux, _kewt_ is available on the AUR:
|
||||||
|
|
||||||
|
- [kewt-bin](https://aur.archlinux.org/packages/kewt-bin) — prebuilt standalone binary from the latest release
|
||||||
|
- [kewt-git](https://aur.archlinux.org/packages/kewt-git) — built from the latest git source
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|||||||
Reference in New Issue
Block a user