aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.net>2025-08-06 22:41:15 +0100
committerLeonardo Bishop <me@leonardobishop.net>2025-08-06 22:41:15 +0100
commite6111d07082332a2ec710ba863cc98109451883b (patch)
tree1feef289c8e0884e874c8cb33bdd38f6587e2770
parentde9c68b085034c897f26ce22fa05bd2601e79373 (diff)
Remove PKGBUILD and install script
-rw-r--r--PKGBUILD15
-rwxr-xr-xinstall.sh8
2 files changed, 0 insertions, 23 deletions
diff --git a/PKGBUILD b/PKGBUILD
deleted file mode 100644
index e13c04e..0000000
--- a/PKGBUILD
+++ /dev/null
@@ -1,15 +0,0 @@
-pkgname=dotfiles-installer
-pkgver=0.2.0
-pkgrel=1
-makedepends=('rust' 'cargo')
-arch=('any')
-
-build() {
- cargo build --release
-}
-
-package() {
- cd $srcdir/..
- install -Dm755 "target/release/$pkgname" \
- -t "$pkgdir/usr/bin"
-}
diff --git a/install.sh b/install.sh
deleted file mode 100755
index 6effadb..0000000
--- a/install.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-#if ! [ rustc --version > /dev/null 2>&1 ]; then
-# sudo pacman -S rustup || exit $?
-# rustup default stable || exit $?
-#fi
-makepkg -f || exit $?
-sudo pacman -U dotfiles-installer*.pkg.tar*