PKGBUILDs modified to build on Arch Linux ARM
Go to file
pepedog 578b000c27 Merge pull request #814 from andrasbiro/xbmc-imx-refreshrate
alarm/xbmc-imx: fix unchangable refresh rate
2014-04-22 18:30:26 +01:00
alarm add write rights to /sys/class/graphics/fb0/mode, needed for refreshrate change on i.MX6 2014-04-22 12:41:57 +02:00
aur aur/plexmediaserver fix download problem, hopefully 2014-04-20 02:19:07 -06:00
community community/docker: patch for ARM support on setBridgeMacAddress of pkg/netlink 2014-04-22 11:29:48 -04:00
core core/linux-chromebook config additions for cgroups/docker 2014-04-22 00:28:54 -04:00
extra extra/gst-plugins-bad to 1.2.4-1 2014-04-21 17:28:42 +00:00
scripts scripts/find-oldest-pkgs.pl to find the packages that were built the longest ago to facilitate rebuilding of older binaries 2013-07-21 09:47:36 -04:00
.gitignore Added .pkg.tar.xz to the gitignore file 2011-06-16 07:12:59 -07:00
CONTRIBUTING.md contributing update 2014-04-16 05:09:32 +00:00
README.md Update README.md 2013-08-20 20:46:43 -06:00

pkgbuilds.git - README - 2013-04-08

This repository hosts PKGBUILDs that have been modified from the upstream Arch Linux release in order to build on architectures supported by Arch Linux ARM. Unmodified upstream packages do not belong here.

These packages are meant to be built on Arch Linux ARM, found at http://archlinuxarm.org

Layout

New packages should be placed in the correct locations, with the package's base folder name reflecting the 'pkgname' for single-package PKGBUILDs, or 'pkgbase' for multiple-package PKGBUILDs. In the case of non-ALARM packages, naming should exactly match the base folder or package name as used upstream or in the AUR, respectively. This will ensure correct package->version matching in the build system update routines.

PKGBUILDs modified from upstream, AUR, or custom PKGBUILDs for the alarm repo must have the author's name and email in the header along with a changelog of what modifications have been done to have the package build correctly. This allows us to identify and merge these changes into newer versions of the package.

core, extra and community

These folders contain packages only found in the upstream repositories by the same name. Exceptions are packages such as our kernels or other packages we feel belong within the scope of these repos.

aur

Contains a selection of packages from the AUR that have been highly requested by the community to be pre-compiled and easily installed. However, you're free to use the AUR just as you would on Arch, and we have included Yaourt to compile and install directly from AUR (yaourt -AS packagename).

alarm

Contains packages we have created or have been submitted to us to enable functionality on ARM systems in use by the community. These are our own or have changed significantly enough from upstream or AUR to no longer qualify as being in those respective locations here.

##Custom PKGBUILD variables for the build system These variables are used to help control the build system used by Arch Linux ARM, and are not a part of the official PKGBUILD specification.

noautobuild

If non-zero, the build system will mark the package as done and not build it for any architecture. This should not be employed in regular use, and requires access to a non-public interface for getting built packages into the repos.

buildarch

A bitmask of architectures to build the package for. This must be set to the decimal equivalent of the bitmask (the number in parenthesis). The values can be combined (bitwise OR) to select more than one architecture. Without being specified, the package will build for all architectures.

  • 0000 0001 (1) = the default, package will be built for all architectures
  • 0000 0010 (2) = the package will be built only for armv5
  • 0000 0100 (4) = the package will be built only for armv7h
  • 0000 1000 (8) = reserved
  • 0001 0000 (16) = the package will be build only for armv6h

highmem

If non-zero, the build system will mark the package as requiring a builder that has more than 1GB of RAM/swap to build successfully.