Skip to content

Commit da44c48

Browse files
authored
Create Makefile
1 parent a448d02 commit da44c48

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
AROS_VERSION := 0.0.1rc1
2+
3+
dist:
4+
python3 -m pip install virtualenv
5+
python3 -m pip install --upgrade build twine
6+
python3 -m build --wheel --sdist
7+
8+
build: dist
9+
10+
archlinux:
11+
mkdir -p dist/arch
12+
cp PKGBUILD dist/arch
13+
cp dist/aros_node-${AROS_VERSION}.tar.gz dist/arch
14+
(cd dist/arch; makepkg --skipchecksums -f)

0 commit comments

Comments
 (0)