Made it use the stable version instead of git

This commit is contained in:
jeffser 2024-09-11 22:56:02 -06:00
parent e8b0733c32
commit db03cce49f

View File

@ -7,16 +7,20 @@ arch=('any')
url="https://github.com/jeffser/Alpaca"
license=('GPL-3.0')
depends=('python-requests' 'python-pillow' 'python-pypdf' 'python-pytube' 'python-html2text')
source=("git+https://github.com/jeffser/Alpaca.git")
source=("https://github.com/Jeffser/Alpaca/archive/refs/tags/${pkgver}.tar.gz")
md5sums=('SKIP')
prepare() {
cd "$srcdir/Alpaca-${pkgver}"
}
build() {
cd "$srcdir/Alpaca"
cd "$srcdir/Alpaca-${pkgver}"
meson setup _build
meson compile -C _build
}
package() {
cd "$srcdir/Alpaca/_build"
cd "$srcdir/Alpaca-${pkgver}/_build"
sudo meson install --destdir="$pkgdir"
}