From 6a0163032fb341c2913afc418707140b895c9e15 Mon Sep 17 00:00:00 2001 From: bakayuuko Date: Wed, 11 Aug 2021 19:45:03 +0700 Subject: [PATCH] New package: zramd-0.9.2 --- srcpkgs/zramd/files/zramd/run | 2 ++ srcpkgs/zramd/template | 43 +++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 srcpkgs/zramd/files/zramd/run create mode 100644 srcpkgs/zramd/template diff --git a/srcpkgs/zramd/files/zramd/run b/srcpkgs/zramd/files/zramd/run new file mode 100644 index 000000000000..487f17b20a8b --- /dev/null +++ b/srcpkgs/zramd/files/zramd/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec zramd start diff --git a/srcpkgs/zramd/template b/srcpkgs/zramd/template new file mode 100644 index 000000000000..01c63c49065c --- /dev/null +++ b/srcpkgs/zramd/template @@ -0,0 +1,43 @@ +# Template file for 'zramd' +pkgname=zramd +version=0.9.2 +revision=1 +archs="x86_64* armv[67]l* aarch64*" +create_wrksrc=yes +depends="coreutils util-linux" +short_desc="Automatically setup swap on zram" +maintainer="bakayuuko " +license="MIT" +homepage="https://github.com/maximumadmin/zramd" + +case "$XBPS_TARGET_MACHINE" in + x86_64*) + _dist_arch="amd64" + checksum="af9f61fa432b9a837905a221442b7b04836620e2fc8eeb2fa4debf42a0d2df06 + 9cb77e0aeebc35f9f2d3deb17a6f0c355d3f1869f3da8c395dcbfc829e7049fc" + ;; + arm*l*) + _dist_arch="armhf" + checksum="af9f61fa432b9a837905a221442b7b04836620e2fc8eeb2fa4debf42a0d2df06 + 9f6748424c58ab98fa6f19312c7718beb51eab23b9532776bf91fe1dd87a56af" + ;; + aarch64*) + _dist_arch="arm64" + checksum="af9f61fa432b9a837905a221442b7b04836620e2fc8eeb2fa4debf42a0d2df06 + 31dd2e28f2acb041dce26fa38a4622e7b0da97ae8069a1a304dccc91609c61be" + ;; +esac + +distfiles="https://raw.githubusercontent.com/maximumadmin/zramd/master/LICENSE>LICENSE.txt +https://github.com/maximumadmin/zramd/releases/download/v${version}/zramd_${_dist_arch}.tar.gz" +skip_extraction="LICENSE.txt" + +do_install() { + mv zramd_${_dist_arch} zramd + vbin zramd +} + +post_install() { + vsv zramd + vlicense ${XBPS_SRCDISTDIR}/${pkgname}-${version}/LICENSE.txt LICENSE.md +}