summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Henrik Bruhn2021-05-21 19:40:32 +0200
committerJan-Henrik Bruhn2021-05-21 19:40:32 +0200
commit5043b0e916a45f47efede9a62d4aa853a16a8afc (patch)
treef891ac06f2b9b6c057143b776a898d4d52fd9ed0
downloadaur-avr-crosspack-20100115.tar.gz
Initial Commit
-rw-r--r--.SRCINFO15
-rw-r--r--.gitignore8
-rw-r--r--PKGBUILD17
3 files changed, 40 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..824a14765589
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = avr-crosspack-20100115
+ pkgdesc = Close enough Versions of AVR GCC Toolchain to Crosspack Releases
+ pkgver = 20100115
+ pkgrel = 1
+ url = https://www.archlinux.org
+ arch = any
+ license = GPL
+ depends = avr-binutils-219
+ depends = avr-gcc-43
+ depends = avr-libc-16
+ provides = avr-crosspack=20100115
+ conflicts = avr-crosspack
+
+pkgname = avr-crosspack-20100115
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..5cf4da41ae73
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+src
+pkg
+*.tar.xz
+*.tar.gz
+*.tar.zst
+*.tar.bz2
+*.log
+.psci_modules
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a96bb38007ef
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: jhbruhn <aur@jhbruhn.de>
+
+_pkgname=avr-crosspack
+pkgname=$_pkgname-20100115
+pkgver=20100115
+pkgrel=1
+pkgdesc='Close enough Versions of AVR GCC Toolchain to Crosspack Releases'
+provides=("$_pkgname=$pkgver")
+conflicts=("$_pkgname")
+url='https://www.archlinux.org'
+arch=('any')
+license=('GPL')
+depends=(
+'avr-binutils-219'
+'avr-gcc-43'
+'avr-libc-16'
+)