commit 8c6abe6ca1a5535408dbe05dbf5e4b3c3338105a Author: ksyasuda Date: Fri Mar 7 04:40:13 2025 -0800 initial commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..64c58c3 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = python-jimaku-dl + pkgdesc = A Python package to download Japanese subtitles for anime from Jimaku.cc + pkgver = 0.1.0 + pkgrel = 1 + url = https://gitea.suda.codes/sudacode/jimaku-dl + arch = any + license = GPL3 + makedepends = python-setuptools + makedepends = python-wheel + makedepends = python-build + makedepends = python-installer + makedepends = git + depends = python + depends = python-pip + depends = fzf + optdepends = mpv: for playback functionality + source = git+https://gitea.suda.codes/sudacode/jimaku-dl.git + sha256sums = SKIP + +pkgname = python-jimaku-dl diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..fc3b3de --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,46 @@ +# Maintainer: sudacode + +pkgname=python-jimaku-dl +_pkgname=jimaku-dl +# We'll determine the version from git, so this is just a placeholder +pkgver=0.1.1.r1.c7cab59 +pkgrel=1 +pkgdesc="A Python package to download Japanese subtitles for anime from Jimaku.cc" +arch=('any') +url="https://gitea.suda.codes/sudacode/jimaku-dl" +license=('GPL3') +depends=('python' 'python-pip' 'fzf') +optdepends=('mpv: for playback functionality') +makedepends=('python-setuptools' 'python-wheel' 'python-build' 'python-installer' 'git') + +# Option 1: Use git directly (more reliable) +source=("git+https://gitea.suda.codes/sudacode/${_pkgname}.git") +# Option 2: Try alternative archive URL format (uncomment if Option 1 fails) +# source=("$_pkgname-$pkgver.tar.gz::https://gitea.suda.codes/sudacode/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz") +# Option 3: Try zip format instead (uncomment if Options 1 and 2 fail) +# source=("$_pkgname-$pkgver.zip::https://gitea.suda.codes/sudacode/${_pkgname}/archive/v${pkgver}.zip") + +sha256sums=('SKIP') + +pkgver() { + cd "$_pkgname" + git describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g' +} + +build() { + cd "$_pkgname" # For git source + # cd "$_pkgname-$pkgver" # Uncomment this for archive source + python -m build --wheel --no-isolation +} + +package() { + cd "$_pkgname" # For git source + # cd "$_pkgname-$pkgver" # Uncomment this for archive source + python -m installer --destdir="$pkgdir" dist/*.whl + + # Install license file + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + + # Install documentation + install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md" +}