initial commit

This commit is contained in:
2025-05-04 00:08:33 -07:00
commit d297976084
7 changed files with 167 additions and 0 deletions

21
builder/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM archlinux:base-devel
RUN pacman -Syu --noconfirm && pacman -S git sudo reflector rsync --noconfirm --needed && \
sed -i 's/#Color/Color/' /etc/pacman.conf && \
sed -i 's/ParallelDownloads = 5/ParallelDownloads = 8/' /etc/pacman.conf && \
sed -i '42c\ILoveCandy' /etc/pacman.conf && \
reflector --latest 5 --sort rate --save /etc/pacman.d/mirrorlist && \
pacman -Scc --noconfirm && rm -rf /var/cache/pacman/pkg/* && \
useradd -m -G wheel -s /bin/bash testuser && \
sed -Ei 's/^#\ (%wheel.*NOPASSWD.*)/\1/' /etc/sudoers && \
mkdir -p /home/testuser/packages/paru && \
chown -R testuser:testuser /home/testuser
USER testuser
WORKDIR /home/testuser/packages/paru
RUN git clone https://aur.archlinux.org/paru.git . && makepkg --noconfirm -si
WORKDIR /home/testuser
CMD [ "/bin/bash" ]

58
builder/PKGBUILD Normal file
View File

@@ -0,0 +1,58 @@
# Maintainer: sudacode <suda@sudacode.com>
pkgname=python-manga-ocr
_pkgname=manga_ocr
pkgver=0.1.14
pkgrel=1
pkgdesc="A tool for extracting text from manga images using OCR"
arch=('x86_64')
url="https://github.com/kha-white/manga-ocr"
license=('Apache-2.0')
makedepends=('python-pip' 'python-installer' 'python-wheel')
depends=(
'python>=3.6'
'python-fire'
'python-fugashi'
'python-jaconv'
'python-loguru'
'python-numpy'
'python-pillow>=10.0.0'
'python-pyperclip'
'python-pytorch>=1.0'
'python-transformers>=4.25.0'
'python-unidic-lite'
)
optdepends=(
'python-pytorch: GPU acceleration'
'wl-clipboard: Read images from the clipboard in the command-line mode on Wayland'
'xclip: Read images from the clipbaord in the command-line mode on X11'
)
checkdepends=('python-pytest')
conflicts=('manga-ocr-git')
source=(
"https://github.com/kha-white/manga_ocr/archive/refs/tags/v${pkgver}.tar.gz"
"skip-example-run-on-boot.patch"
)
sha256sums=('f7d73bbf482cbefb6f91ff3c628a3131d6c7dc863612539fe5d03a4b7d640643'
'd287a2fbfa71d9753cdfd921ce67bd7bf1fcf1e36dd08fc00c8d142305d4da88')
prepare() {
cd "${_pkgname//_/-}-$pkgver"
patch --forward --strip=0 --input=../skip-example-run-on-boot.patch
}
build() {
cd "${_pkgname//_/-}-$pkgver"
python -m pip wheel . --no-deps --wheel-dir dist
}
check() {
cd "${_pkgname//_/-}-$pkgver"
pytest -o addopts=""
}
package() {
cd "${_pkgname//_/-}-$pkgver"
python -m pip install --no-deps --root="$pkgdir" --prefix=/usr --ignore-installed .
}

10
builder/compose.yml Normal file
View File

@@ -0,0 +1,10 @@
---
services:
pkgbuilder:
build: .
container_name: pkgbuilder
network_mode: host
tty: true
volumes:
- ./PKGBUILD:/home/testuser/packages/PKGBUILD:ro
restart: no