Check-in [934687f871]
Overview
Comment:Added explicit domani
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | packages
Files: files | file ages | folders
SHA1:934687f871389dcfadaa3dcfe35129d234abd81e
User & Date: rkeene on 2014-11-18 15:58:44
Other Links: manifest | tags
Context
2014-11-20
18:51
Added start of ffmpeg build check-in: 9b4716dc28 user: rkeene tags: packages
2014-11-18
15:58
Added explicit domani check-in: 934687f871 user: rkeene tags: packages
15:46
Added some rkeene.org packages check-in: d1f76b33ea user: rkeene tags: packages
Changes

Modified pkgs/filed from [69e639f3f3] to [4dd4fb9eb5].

     1      1   #! /usr/bin/env bash
     2      2   
     3      3   version='1.12'
     4      4   url="http://filed.rkeene.org/fossil/tarball/filed-${version}.tar.gz?uuid=${version}"
     5      5   sha256='807931f6c8ab4c90e26f5221e89558a84b31d4b4ce60c8c2cccb09350e25de85'
            6  +domain='rkeene.org'
     6      7   
     7      8   function configure() {
     8      9   	configure_gcc
     9     10   }
    10     11   
    11     12   function build() {
    12     13   	make prefix="${prefix}" CC="${CC} ${CFLAGS}" LDFLAGS="-pthread ${LDFLAGS}"
    13     14   }
    14     15   
    15     16   function install() {
    16     17   	make install prefix="${prefix}" DESTDIR="${destdir}"
    17     18   }