summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Henrik Bruhn2021-05-21 19:41:55 +0200
committerJan-Henrik Bruhn2021-05-21 19:41:55 +0200
commitb07f5106b7eeb52fa5cbf5b8fa5accb571431786 (patch)
treeeaf1f7795fccaa31f0d47325b16f5dee9c83cce4
downloadaur-b07f5106b7eeb52fa5cbf5b8fa5accb571431786.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..176ba8a1449c
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = avr-crosspack-20120217
+ pkgdesc = Close enough Versions of AVR GCC Toolchain to Crosspack Releases
+ pkgver = 20120217
+ pkgrel = 1
+ url = https://www.archlinux.org
+ arch = any
+ license = GPL
+ depends = avr-binutils-220
+ depends = avr-gcc-45
+ depends = avr-libc-18
+ provides = avr-crosspack=20120217
+ conflicts = avr-crosspack
+
+pkgname = avr-crosspack-20120217
+
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..73bf64a3be2c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: jhbruhn <aur@jhbruhn.de>
+
+_pkgname=avr-crosspack
+pkgname=$_pkgname-20120217
+pkgver=20120217
+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-220'
+'avr-gcc-45'
+'avr-libc-18'
+)