blob: a67197053b1051fe33da1bf4511bb150b0b0e968 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# Simple script to build AUR package locally for testing
cd "$(dirname "$0")"
# Copy files to aur directory
cp ../token-server.js .
# Build the package
makepkg -si
|