aboutsummaryrefslogtreecommitdiff
path: root/apks/genpass
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-10-14 21:30:02 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-10-14 21:30:02 +0200
commit1fe2776b26d6fe83e7bcd662386e6448754c7ca9 (patch)
treeedfa8246a5d8631bd2139deae748caf54998af13 /apks/genpass
parent307af8fd5a3e74ebcb64ac5bbe57493b59ead233 (diff)
downloadapkbuilds-1fe2776b26d6fe83e7bcd662386e6448754c7ca9.tar.gz
apkbuilds-1fe2776b26d6fe83e7bcd662386e6448754c7ca9.tar.bz2
apkbuilds-1fe2776b26d6fe83e7bcd662386e6448754c7ca9.zip
feat: fix remote pathing
Diffstat (limited to 'apks/genpass')
-rw-r--r--apks/genpass/APKBUILD54
-rw-r--r--apks/genpass/genpass.nginx.conf4
2 files changed, 58 insertions, 0 deletions
diff --git a/apks/genpass/APKBUILD b/apks/genpass/APKBUILD
new file mode 100644
index 0000000..3c74124
--- /dev/null
+++ b/apks/genpass/APKBUILD
@@ -0,0 +1,54 @@
+# Maintainer: Gabriel Arakaki Giovanini <mail@gabrielgio.me>
+pkgname=genpass
+pkgver=0.1.0
+pkgrel=0
+pkgdesc="Website password generator in wasm"
+url="https://git.sr.ht/~gabrielgio/genpass"
+arch="all"
+license="MIT"
+depends=""
+makedepends="
+ curl
+ build-base
+ firefox
+ make
+ npm
+ cargo
+ openssl-dev
+ bzip2-dev
+"
+builddir="$srcdir/$pkgname-$pkgver/"
+subpackages="$pkgname-nginx:_nginx"
+
+source="
+ https://artifacts.gabrielgio.me/$pkgname/$pkgname-$pkgver.tar.gz
+ $pkgname.nginx.conf
+"
+
+build() {
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile minimal --quiet -y
+ source $HOME/.cargo/env
+ curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
+ make
+}
+
+check() {
+ make test
+}
+
+_nginx() {
+ depends="nginx"
+ pkgdesc="nginx configuration for $pkgname"
+ install -Dm644 "$srcdir"/"$package"/"$pkgname".nginx.conf \
+ "$subpkgdir"/etc/nginx/http.d/"$pkgname".nginx.conf
+}
+
+package() {
+ mkdir -p "$pkgdir"/var/www
+ cp -dr public "$pkgdir"/var/www/"$pkgname"
+}
+
+sha512sums="
+1b3079701557f97a0380dcfb4d67e7b96fb340a1c5f9b822a718a4c68b638ad09ba33afe33babc8bd4454390d128ed0b55bb1cd7aa513ced90fe443cddf022d1 genpass-0.1.0.tar.gz
+6e6b9d80b26006efd5b6e368bd3925425b2080bf88dca38c91a9dd8a1db2b3774b2cb8ecba67ac01d2c822f0ad75106d6e103cc3371076f3f40232dd38b57fd4 genpass.nginx.conf
+"
diff --git a/apks/genpass/genpass.nginx.conf b/apks/genpass/genpass.nginx.conf
new file mode 100644
index 0000000..a11fd3b
--- /dev/null
+++ b/apks/genpass/genpass.nginx.conf
@@ -0,0 +1,4 @@
+server {
+ server_name genpass.lan;
+ root /var/www/genpass;
+}