Created
November 11, 2011 16:14
-
-
Save pagenoare/1358398 to your computer and use it in GitHub Desktop.
awesome pisi package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright 2007 TUBITAK/UEKAE | |
# Licensed under the GNU General Public License, version 2. | |
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt | |
from pisi.actionsapi import autotools | |
def setup(): | |
autotools.configure() | |
def build(): | |
autotools.make() | |
def install(): | |
autotools.install() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd"> | |
<PISI> | |
<Source> | |
<Name>awesome</Name> | |
<Homepage>http://awesome.naquadah.org</Homepage> | |
<Packager> | |
<Name>Kacper Krupa</Name> | |
<Email>[email protected]</Email> | |
</Packager> | |
<License>GPL-2</License> | |
<Summary>A tiling window manager initialy based on a dwm code rewriting.</Summary> | |
<Description>A tiling window manager initialy based on a dwm code rewriting.</Description> | |
<Archive sha1sum="f3fb824623197aa70708c28ea3aa0c0665617016" type="tarbz2">http://awesome.naquadah.org/download/awesome-3.4.10.tar.bz2</Archive> | |
<BuildDependencies> | |
<Dependency>imlib2-devel</Dependency> | |
<Dependency>libxdg-basedir</Dependency> | |
<Dependency>cairo-devel</Dependency> | |
<Dependency>pango-devel</Dependency> | |
<Dependency>startup-notification-devel</Dependency> | |
<Dependency>lua-devel</Dependency> | |
<Dependency>doxygen</Dependency> | |
<Dependency>libev</Dependency> | |
</BuildDependencies> | |
</Source> | |
<Package> | |
<Name>awesome</Name> | |
<RuntimeDependencies> | |
<Dependency>cairo</Dependency> | |
<Dependency>lua</Dependency> | |
<Dependency>pango</Dependency> | |
<Dependency>imlib2</Dependency> | |
<Dependency>libev</Dependency> | |
<Dependency>startup-notification</Dependency> | |
<Dependency>libxdg-basedir</Dependency> | |
<Dependency>dbus</Dependency> | |
</RuntimeDependencies> | |
<Files> | |
<Path fileType="config">/etc</Path> | |
<Path fileType="executable">/usr/bin</Path> | |
<Path fileType="doc">/usr/share/xsession</Path> | |
<Path fileType="doc">/usr/share/doc</Path> | |
<Path fileType="data">/usr/share</Path> | |
</Files> | |
</Package> | |
<History> | |
<Update release="2"> | |
<Date>22.10.2011</Date> | |
<Version>3.4.10</Version> | |
<Comment>Bump to 3.4.10 version.</Comment> | |
<Name>Kacper Krupa</Name> | |
<Email>[email protected]</Email> | |
</Update> | |
<Update release="1"> | |
<Date>05.05.2008</Date> | |
<Version>2.2</Version> | |
<Comment>First release.</Comment> | |
<Name>Kacper Krupa</Name> | |
<Email>[email protected]</Email> | |
</Update> | |
</History> | |
</PISI> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment