blob: db2852060670a842375dfdfdc6e8607cf25f3f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#! /bin/sh
#
# Copyright Matthias Hentges <devel@hentges.net> (c) 2007
# License: MIT (see http://www.opensource.org/licenses/mit-license.php
# for a copy of the license)
#
# Filename: Untitled
# Date: 20070317 (YMD)
DESCRIPTION = "webcam_server is a program that allows others to view your webcam from a web browser."
HOMEPAGE = "http://webcamserver.sourceforge.net/"
LICENSE = "GPL"
PR = "r1"
######################################################################################
DEPENDS = "jpeg"
SRC_URI = "${SOURCEFORGE_MIRROR}/webcamserver/webcam_server-${PV}.tar.gz"
S = "${WORKDIR}/webcam_server-${PV}"
######################################################################################
inherit autotools
|