File: conanfile.py

package info (click to toggle)
argh 1.3.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 244 kB
  • sloc: cpp: 942; python: 24; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from conans import ConanFile


class ArghConan(ConanFile):
    name = "argh"
    version = "1.2.1"
    url = "https://github.com/adishavit/argh"
    description = "Argh! A minimalist argument handler."
    license = "BSD 3-Clause"
    exports = ["LICENSE"]
    exports_sources = "argh.h"

    def package(self):
        self.copy(pattern="LICENSE", dst="license")
        self.copy(pattern="argh.h", dst="include")