blob: d2979e985ef018d9d9436eceaece247553bda5c3 (
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
|
# Maintainer: Ashutosh Tripathi pushpatripathi1111@gmail.com
pkgname=encrypt-decrypt-pyqt5
pkgdesc="A solution for encrypting and decrypting files built with PyQt5"
pkgver=1.0
pkgrel=1
arch=(x86_64)
url="https://github.com/stupid-kid-af/Encrypt-Decrypt-PyQt5"
license=('MIT')
provides=(encd)
depends=('zlib' 'glibc')
makedepends=('git')
install=
source=("git+$url")
noextract=()
md5sums=('SKIP')
validpgpkeys=()
build() {
cd Encrypt-Decrypt-PyQt5
pyinstaller --onefile --windowed application.py
}
package() {
cd Encrypt-Decrypt-PyQt5
cd dist
mv application "$pkgname"
install -Dm755 ./"$pkgname" "$pkgdir/usr/bin/$pkgname"
}
|