blob: 4da56a28ced5fa845fdf6c761494e5ab4925b292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pkgname=abinot
pkgver=1.0.0
pkgrel=2
pkgdesc="Abinot Python Script for Arch Linux"
arch=('x86_64')
url="https://www.Abinot.ir/" # آدرس ریپوی خود را وارد کنید
license=('GPL3')
depends=('bash' 'yay' 'base-devel' 'git' 'python' 'python-pyqt5')
makedepends=('git')
source=("git+https://github.com/abinot/abinot-arch.git") # آدرس ریپوی شما
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/abinot-arch"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "$srcdir/abinot-arch"
install -Dm755 "index.py" "$pkgdir/usr/bin/abinot"
}
|