diff --git a/PKGBUILD b/PKGBUILD index 751c5f5..81f5227 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,21 +5,4 @@ pkgdesc="tiny script runner" arch=('x86_64') url="https://example.com" license=('AGPLv3') -depends=('bash') -makedepends=('cmake' 'gcc') -source=("https://github.com/J-K-Tech/${pkgname}/archive/refs/tags/${pkgver}.tar.gz") -sha256sums=('SKIP') # Change to proper checksum later - -build() { - cd "$srcdir/$pkgname-$pkgver" - cmake -DCMAKE_INSTALL_PREFIX=/usr . - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install - - # ✅ Install the license manually if upstream doesn’t - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} +a \ No newline at end of file diff --git a/a.out b/a.out new file mode 100755 index 0000000..b2e919f Binary files /dev/null and b/a.out differ diff --git a/build.tmk b/build.tmk new file mode 100644 index 0000000..4825567 --- /dev/null +++ b/build.tmk @@ -0,0 +1,20 @@ + +clang++ term.cpp main.cpp -m32 --target=i686-w64-mingw32-gcc -O3 -o tiny9x.exe -Wl,--major-subsystem-version=4,--minor-subsystem-version=0 + +\n +clang++ term.cpp main.cpp -m32 --target=i686-w64-mingw32-gcc -O3 -o tiny2k.exe -Wl,--major-subsystem-version=5,--minor-subsystem-version=0 + +\n +clang++ term.cpp main.cpp -m64 --target=x86_64-w64-mingw32-gcc -O3 -o tinyxp64.exe -Wl,--major-subsystem-version=5,--minor-subsystem-version=1 + +\n +clang++ term.cpp main.cpp -m64 --target=x86_64-w64-mingw32-gcc -O3 -o tiny.exe -Wl,--major-subsystem-version=10,--minor-subsystem-version=1 + +\n +clang++ term.cpp main.cpp -O3 -o tiny + +\n +clang++ term.cpp main.cpp -m32 -O3 -o tiny32 + +\n +;djgpp term.cpp main.cpp -O3 -o tiny32 \ No newline at end of file diff --git a/out/tiny b/out/tiny new file mode 100755 index 0000000..21e5ba7 Binary files /dev/null and b/out/tiny differ