summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bafcb3d80f228f3015dc1cfd3dd6df3e088baa74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Maintainer: KDLoww <wsgsb555@outlook.com> | https://github.com/Pony-CW
# Contributor: Reylyer <reylyercross@shariyl.cloud> | https://github.com/Reylyer
# With the help of Thomas <thomas@vypxl.io>

# Package name
pkgname=linuxdeploy-appimage

# Version
_ver=1-alpha-20250213-2
pkgver=$(echo "${_ver}" | sed 's/-/./g')
pkgrel=1

# Generic
pkgdesc="AppDir creation and maintenance tool."
arch=('x86_64')
url="https://github.com/linuxdeploy/linuxdeploy"
license=('MIT')

# Dependencies
depends=(fuse2)

# Package relations
conflicts=("linuxdeploy")
provides=("linuxdeploy")

# Others
options=(!strip)

# Sources
source=("https://github.com/linuxdeploy/linuxdeploy/releases/download/${_ver}/linuxdeploy-${arch}.AppImage")
sha256sums=("4648f278ab3ef31f819e67c30d50f462640e5365a77637d7e6f2ad9fd0b4522a")


package() {
    install -Dm755 linuxdeploy-${arch}.AppImage ${pkgdir}/usr/bin/linuxdeploy
}