blob: 995342a5dee48ca33a6258199a2f5cbcce266a72 (
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
29
30
31
32
33
34
35
36
37
38
39
|
# Twos AppImage PKGBUILD
## Local Development Setup
To run the version finder script locally:
```bash
# Create virtual environment
python3 -m venv .venv
# Activate virtual environment
source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Install Playwright browser
playwright install chromium
# Run the script
./find_release.sh
```
## Always
Generate .SRCINFO
`makepkg --printsrcinfo > .SRCINFO`
## release package
```bash
makepkg --printsrcinfo > .SRCINFO
git add PKGBUILD .SRCINFO
git commit -m "useful commit message"
git push aur master
```
|